Renaming imports, exports, or destructuring assignments to the same name is redundant and can be safely removed. You may accidentally end up with
such code if you do a refactoring and change the local name in several places.
import { foo as foo } from "bar";
export { foo as foo };
let { foo: foo } = bar;
Fix your code to remove the unnecessary renaming.
import { foo } from "bar";
export { foo };
let { foo } = bar;